net/http.http2responseWriterState.snapHeader (field)

12 uses

	net/http (current package)
		h2_bundle.go#L6100: 	snapHeader    Header   // snapshot of handlerHeader at WriteHeader time
		h2_bundle.go#L6160: 		if clen = rws.snapHeader.Get("Content-Length"); clen != "" {
		h2_bundle.go#L6161: 			rws.snapHeader.Del("Content-Length")
		h2_bundle.go#L6171: 		_, hasContentType := rws.snapHeader["Content-Type"]
		h2_bundle.go#L6174: 		ce := rws.snapHeader.Get("Content-Encoding")
		h2_bundle.go#L6180: 		if _, ok := rws.snapHeader["Date"]; !ok {
		h2_bundle.go#L6185: 		for _, v := range rws.snapHeader["Trailer"] {
		h2_bundle.go#L6194: 		if _, ok := rws.snapHeader["Connection"]; ok {
		h2_bundle.go#L6195: 			v := rws.snapHeader.Get("Connection")
		h2_bundle.go#L6196: 			delete(rws.snapHeader, "Connection")
		h2_bundle.go#L6206: 			h:             rws.snapHeader,
		h2_bundle.go#L6392: 			rws.snapHeader = http2cloneHeader(rws.handlerHeader)